home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / MTRECAL.PAK / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  54 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. class CMainFrame : public CMDIFrameWnd
  14. {
  15.     DECLARE_DYNAMIC(CMainFrame)
  16. public:
  17.     CMainFrame();
  18.  
  19. // Attributes
  20. protected:
  21.     int m_nPercentDone;
  22.  
  23. // Operations
  24. public:
  25.  
  26. // Overrides
  27.     // ClassWizard generate virtual function overrides
  28.     //{{AFX_VIRTUAL(CMainFrame)
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. public:
  33.     virtual ~CMainFrame();
  34. #ifdef _DEBUG
  35.     virtual void AssertValid() const;
  36.     virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38.  
  39. protected:  // control bar embedded members
  40.     CStatusBar  m_wndStatusBar;
  41.     CToolBar    m_wndToolBar;
  42.  
  43. // Generated message map functions
  44. protected:
  45.     //{{AFX_MSG(CMainFrame)
  46.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  47.     //}}AFX_MSG
  48.     afx_msg void OnUpdatePercentDone(CCmdUI* pCmdUI);
  49.     LRESULT OnRecalcInProgress(WPARAM wParam, LPARAM lParam);
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54.